There is a stem() function in R (as I pointed out in the companion brochure). But the output is not very helpful: not a histogram and not a stem-and-leaf plot due to the truncated nature (a bunch of zeros followed by a count). It also takes a while to load a csv and run it through stem, over 300 seconds or 5 minutes...
In [1]:
start <- proc.time()
taxi <- read.csv('yellow_tripdata_2015-01.csv',header=T)
print(proc.time() - start)
In [2]:
start <- proc.time()
stem(taxi$total_amount)
print(proc.time() - start)
I have gotten a few requests to bring stemgraphic to R. If I get a customer or a corporation that wants to sponsor this in part, it will happen. At the moment, I do not have enough free time to do this. In the interim, you can use it through %%R magic in Jupyter notebook
In [ ]: